home *** CD-ROM | disk | FTP | other *** search
/ The Original Shareware 1.1 / The Original Shareware (WeMake CDs)(Volume 1.1)(CDs, Inc)(1993).iso / 16 / fpc225_3.zip / F-PCHELP.ZIP / BOOKMARK.HLP < prev    next >
Text File  |  1988-07-05  |  2KB  |  51 lines

  1. \ BOOKMARK.HLP  Mark your place in a file, to come back to.
  2.  
  3. BOOKMARK.SEQ
  4.  
  5.           Jerry Modrow had a bright idea that it would be nice to be
  6.         able to mark your place in a file, such that you could go
  7.         back to that place at a later time after having done a VIEW.
  8.         This is an implimentation of that concept.
  9.  
  10.  
  11. #marks          ( --- N1 )
  12.         A constant that specifies the number of Book Marks being
  13.         defined.
  14.  
  15. markhandles     ( --- a1 )
  16.         An array that holds the Book Mark file handles.
  17.  
  18. marklines       ( --- a1 )
  19.         an array that holds the Book Mark file offsets.
  20.  
  21. clr_marks       ( --- )
  22.         A word that clears the Book Mark arrays, so there will be no
  23.         current Book Marks set.
  24.  
  25. mark_init       ( --- )
  26.         A word that gets executed at COLD START time, to
  27.         automatically clear the Book Mark arrays.
  28.  
  29.  
  30. makemarkset     ( n1 --- )
  31.         A defining word that builds the Set Book Mark words.
  32.  
  33. m1
  34. m2
  35. m3              ( --- )
  36.         These are the Set Book Mark words, performing one of these,
  37.         sets its mark to remember the file and file offset currently
  38.         set for later restoral.
  39.  
  40. returntomark    ( n1 --- )
  41.         A defining word that builds the Return to Book Mark words.
  42.  
  43. bm1
  44. bm2
  45. bm3             ( --- )
  46.         These are the Return to Book Mark words, performing one of
  47.         these returns you to the file and file offset that was set
  48.         when the equivelant M1, M2, or M3 word was executed.
  49.  
  50.  
  51.